body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
background: radial-gradient(circle at center, #222, #000);
color: #fff;
}
body * {
box-sizing: border-box;
}
body #wrap {
width: 400px;
height: 400px;
position: relative;
overflow: hidden;
}
body #wrap:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: url("https://puu.sh/Blj4e/88c7a2d9f4.png");
background-size: cover;
-webkit-animation: zoomin 2.25s ease-in-out 1 forwards;
animation: zoomin 2.25s ease-in-out 1 forwards;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
@-webkit-keyframes zoomin {
to {
-webkit-transform: scale(1.05);
transform: scale(1.05);
opacity: 0.3;
}
}